Views [dbo].[vPledgeSummary]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created3:38:38 PM Friday, January 07, 2011
Last Modified1:49:15 PM Thursday, September 22, 2011
Columns
Name
ID
TransactionNumber
TransactionDate
Pledge
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
Create view vPledgeSummary as
    select ID, TransactionNumber,
           Max(TransactionDate)  TransactionDate,
           Sum(NetPledgeAmount)  Pledge
    from vPledge
Group by  TransactionNumber,ID

GO
GRANT REFERENCES ON  [dbo].[vPledgeSummary] TO [IMIS]
GRANT SELECT ON  [dbo].[vPledgeSummary] TO [IMIS]
GRANT INSERT ON  [dbo].[vPledgeSummary] TO [IMIS]
GRANT DELETE ON  [dbo].[vPledgeSummary] TO [IMIS]
GRANT UPDATE ON  [dbo].[vPledgeSummary] TO [IMIS]
GO
Uses